/*========================== reset ==========================*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: 'Microsoft YaHei', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    background: #fff;
}
@media (min-width: 1025px) {
    body {
        min-width: 1330px;
    }
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dd, form, input, select, textarea, button, table, td, th, header, main, footer, nav, aside, section, article, figure, figcaption {
    padding: 0;
    margin: 0;
}
header, main, footer, nav, aside, section, article, figure, figcaption {
    display: block;
}
h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    color: inherit;
}
li {
    list-style: none;
}
a {
    color: inherit;
    background: transparent;
    text-decoration: none;
}
a:focus, a:active, a:hover {
    text-decoration: none;
    outline: none;
}
b, strong {
    font-weight: bold;
}
i, em {
    font-style: normal;
}
img {
    max-width: 100%;
    max-height: 100%;
    border: none;
    vertical-align: middle;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    border-radius: 0;
    outline: none;
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    overflow: visible;
    cursor: pointer;
}
textarea {
    overflow: auto;
    resize: none;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
/*========================== common ==========================*/
.clearfix {
    *zoom: 1;
}
.clearfix:before, .clearfix:after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}
.img-box {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
}
.img-box img {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    border: none;
    vertical-align: middle;
}
.img-centered {
    position: relative;
    overflow: hidden;
    text-align: center;
}
.img-centered img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
}
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    *zoom: 1;
}
.container:before, .container:after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}
@media (max-width: 1024px) {
    .container {
        max-width: 768px;
        padding: 0 2%;
    }
}
@media (max-width: 768px) {
    .container {
        width: 100%;
    }
}